home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue25 / tu32 / TU32.ZIP / TU32Demo / BtchDemo / btchprg2.dpr next >
Encoding:
Text File  |  1996-11-07  |  402 b   |  17 lines

  1. program Btchprg2;
  2.  
  3. uses
  4.   Forms,
  5.   Statdlg in 'STATDLG.PAS' {FormStatus},
  6.   Errtbdlg in 'ERRTBDLG.PAS' {BtnBottomDlg},
  7.   Bthmain2 in 'BTHMAIN2.PAS' {FormBatchAliasMain};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TFormBatchAliasMain, FormBatchAliasMain);
  13.   Application.CreateForm(TFormStatus, FormStatus);
  14.   Application.CreateForm(TBtnBottomDlg, BtnBottomDlg);
  15.   Application.Run;
  16. end.
  17.